httpclient-cache/src/main/java/org/apache/http/impl/client/cache/CachingExec.java
| |
| 27 | |
package org.apache.http.impl.client.cache; |
| |
| |
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicLong;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.http.Header;
import org.apache.http.HeaderElement;
import org.apache.http.HttpException;
import org.apache.http.HttpHost;
import org.apache.http.HttpMessage;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.HttpVersion;
import org.apache.http.ProtocolException;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
import org.apache.http.annotation.ThreadSafe;
import org.apache.http.client.cache.CacheResponseStatus;
import org.apache.http.client.cache.HeaderConstants;
import org.apache.http.client.cache.HttpCacheContext;
import org.apache.http.client.cache.HttpCacheEntry;
import org.apache.http.client.cache.HttpCacheStorage;
import org.apache.http.client.cache.ResourceFactory;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpExecutionAware;
import org.apache.http.client.methods.HttpRequestWrapper;
import org.apache.http.client.protocol.HttpClientContext;
import org.apache.http.client.utils.DateUtils;
import org.apache.http.client.utils.URIUtils;
import org.apache.http.conn.routing.HttpRoute;
import org.apache.http.impl.execchain.ClientExecChain;
import org.apache.http.message.BasicHttpResponse;
import org.apache.http.protocol.HTTP;
import org.apache.http.protocol.HttpContext;
import org.apache.http.protocol.HttpCoreContext;
import org.apache.http.util.Args;
import org.apache.http.util.VersionInfo;
import ...
|
| |
| |
| 102 | |
@ThreadSafe // So long as the responseCache implementation is threadsafe |
| 103 | |
public class CachingExec implements ClientExecChain { |
| |
| 105 | |
private final static boolean SUPPORTS_RANGE_AND_CONTENT_RANGE_HEADERS = false; |
| |
| 107 | 2696 |
private final AtomicLong cacheHits = new AtomicLong();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 108 | 2696 |
private final AtomicLong cacheMisses = new AtomicLong();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 109 | 2696 |
private final AtomicLong cacheUpdates = new AtomicLong();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| |
| 111 | 2696 |
private final Map<ProtocolVersion, String> viaHeaders = new HashMap<ProtocolVersion, String>(4);
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| |
| 113 | |
private final CacheConfig cacheConfig; |
| 114 | |
private final ClientExecChain backend; |
| 115 | |
private final HttpCache responseCache; |
| 116 | |
private final CacheValidityPolicy validityPolicy; |
| 117 | |
private final CachedHttpResponseGenerator responseGenerator; |
| 118 | |
private final CacheableRequestPolicy cacheableRequestPolicy; |
| 119 | |
private final CachedResponseSuitabilityChecker suitabilityChecker; |
| 120 | |
private final ConditionalRequestBuilder conditionalRequestBuilder; |
| 121 | |
private final ResponseProtocolCompliance responseCompliance; |
| 122 | |
private final RequestProtocolCompliance requestCompliance; |
| 123 | |
private final ResponseCachingPolicy responseCachingPolicy; |
| |
| 125 | |
private final AsynchronousValidator asynchRevalidator; |
| |
| 127 | 2696 |
private final Log log = LogFactory.getLog(getClass());
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| |
| 129 | |
public CachingExec( |
| 130 | |
final ClientExecChain backend, |
| 131 | |
final HttpCache cache, |
| 132 | |
final CacheConfig config) { |
| 133 | 2619 |
this(backend, cache, config, null);
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
|
| 134 | 2619 |
}
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
|
| |
| 136 | |
public CachingExec( |
| 137 | |
final ClientExecChain backend, |
| 138 | |
final HttpCache cache, |
| 139 | |
final CacheConfig config, |
| 140 | |
final AsynchronousValidator asynchRevalidator) { |
| 141 | 2626 |
super();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 142 | 2626 |
Args.notNull(backend, "HTTP backend");
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 143 | 2626 |
Args.notNull(cache, "HttpCache");
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 144 | 2626 |
this.cacheConfig = config != null ? config : CacheConfig.DEFAULT;
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
|
| 145 | 2626 |
this.backend = backend;
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 146 | 2626 |
this.responseCache = cache;
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 147 | 2626 |
this.validityPolicy = new CacheValidityPolicy();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 148 | 2626 |
this.responseGenerator = new CachedHttpResponseGenerator(this.validityPolicy);
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 149 | 2626 |
this.cacheableRequestPolicy = new CacheableRequestPolicy();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 150 | 2626 |
this.suitabilityChecker = new CachedResponseSuitabilityChecker(this.validityPolicy, this.cacheConfig);
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 151 | 2626 |
this.conditionalRequestBuilder = new ConditionalRequestBuilder();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 152 | 2626 |
this.responseCompliance = new ResponseProtocolCompliance();
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 153 | 2626 |
this.requestCompliance = new RequestProtocolCompliance(this.cacheConfig.isWeakETagOnPutDeleteAllowed());
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 154 | 2626 |
this.responseCachingPolicy = new ResponseCachingPolicy(
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 155 | 2626 |
this.cacheConfig.getMaxObjectSize(), this.cacheConfig.isSharedCache(),
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 156 | 2626 |
this.cacheConfig.isNeverCacheHTTP10ResponsesWithQuery(), this.cacheConfig.is303CachingEnabled());
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 157 | 2626 |
this.asynchRevalidator = asynchRevalidator;
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| 158 | 2626 |
}
- org.apache.http.impl.client.cache.AbstractProtocolTest#setUp: 103x568
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1152x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5672x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1061x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3286x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5684x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5659x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1810x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1091x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2818x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2493x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2869x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1030x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 786x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 344
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1000
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1454
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1225
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 544
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 675
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1370
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1295
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 390
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1342
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 701
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 439
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 797
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1426
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1484
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 733
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1037
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 271
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 645
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 970
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 941
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1637
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1528
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 494
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1516
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1468
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 911
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1682
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 574
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 456
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1154
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1500
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 403
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 610
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 237
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1554
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 473
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1440
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 332
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 874
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 765
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 219
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1594
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 837
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1113
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 417
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1073
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testAsynchronousWorkersMax0: 40
- org.apache.http.impl.client.cache.TestCachingHttpClientBuilder#testNullCacheConfig: 45
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 122
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 67
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 88
- org.apache.http.impl.client.cache.TestProtocolDeviations#setUp: 119x5
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 522
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 573
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 335
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testHTTPCLIENT1470: 371
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 423
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 172
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 380
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#start: 112
|
| |
| 160 | |
public CachingExec( |
| 161 | |
final ClientExecChain backend, |
| 162 | |
final ResourceFactory resourceFactory, |
| 163 | |
final HttpCacheStorage storage, |
| 164 | |
final CacheConfig config) { |
| 165 | 231 |
this(backend, new BasicHttpCache(resourceFactory, storage, config), config);
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
|
| 166 | 231 |
}
- org.apache.http.impl.client.cache.ehcache.TestEhcacheProtocolRequirements#setUp: 75x231
|
| |
| 168 | |
public CachingExec(final ClientExecChain backend) { |
| 169 | 8 |
this(backend, new BasicHttpCache(), CacheConfig.DEFAULT);
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
|
| 170 | 8 |
}
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFiveFailedAttempts: 119
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithThreeFailedAttempts: 97
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithSixFailedAttempts: 130
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithOneFailedAttempt: 75
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithFourFailedAttempts: 108
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithMaxNumberOfFailedAttempts: 141
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithTwoFailedAttempts: 86
- org.apache.http.impl.client.cache.TestExponentialBackingOffSchedulingStrategy#testScheduleWithoutPreviousError: 64
|
| |
| 172 | |
CachingExec( |
| 173 | |
final ClientExecChain backend, |
| 174 | |
final HttpCache responseCache, |
| 175 | |
final CacheValidityPolicy validityPolicy, |
| 176 | |
final ResponseCachingPolicy responseCachingPolicy, |
| 177 | |
final CachedHttpResponseGenerator responseGenerator, |
| 178 | |
final CacheableRequestPolicy cacheableRequestPolicy, |
| 179 | |
final CachedResponseSuitabilityChecker suitabilityChecker, |
| 180 | |
final ConditionalRequestBuilder conditionalRequestBuilder, |
| 181 | |
final ResponseProtocolCompliance responseCompliance, |
| 182 | |
final RequestProtocolCompliance requestCompliance, |
| 183 | |
final CacheConfig config, |
| 184 | 70 |
final AsynchronousValidator asynchRevalidator) {
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 185 | 70 |
this.cacheConfig = config != null ? config : CacheConfig.DEFAULT;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 186 | 70 |
this.backend = backend;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 187 | 70 |
this.responseCache = responseCache;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 188 | 70 |
this.validityPolicy = validityPolicy;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 189 | 70 |
this.responseCachingPolicy = responseCachingPolicy;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 190 | 70 |
this.responseGenerator = responseGenerator;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 191 | 70 |
this.cacheableRequestPolicy = cacheableRequestPolicy;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 192 | 70 |
this.suitabilityChecker = suitabilityChecker;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 193 | 70 |
this.conditionalRequestBuilder = conditionalRequestBuilder;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 194 | 70 |
this.responseCompliance = responseCompliance;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 195 | 70 |
this.requestCompliance = requestCompliance;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 196 | 70 |
this.asynchRevalidator = asynchRevalidator;
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| 197 | 70 |
}
- org.apache.http.impl.client.cache.TestCachingExecChain#setUp: 149x62
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 252
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 221
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 158
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 194
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 394
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 284
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 172
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 315
|
| |
| |
| 204 | |
public long getCacheHits() { |
| 205 | 3 |
return cacheHits.get();
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 246
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 215
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 188
|
| 206 | |
} |
| |
| |
| 213 | |
public long getCacheMisses() { |
| 214 | 3 |
return cacheMisses.get();
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 245
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 214
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 187
|
| 215 | |
} |
| |
| |
| 222 | |
public long getCacheUpdates() { |
| 223 | 3 |
return cacheUpdates.get();
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 247
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 216
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 189
|
| 224 | |
} |
| |
| 226 | |
public CloseableHttpResponse execute( |
| 227 | |
final HttpRoute route, |
| 228 | |
final HttpRequestWrapper request) throws IOException, HttpException { |
| 229 | 0 |
return execute(route, request, HttpClientContext.create(), null);
|
| 230 | |
} |
| |
| 232 | |
public CloseableHttpResponse execute( |
| 233 | |
final HttpRoute route, |
| 234 | |
final HttpRequestWrapper request, |
| 235 | |
final HttpClientContext context) throws IOException, HttpException { |
| 236 | 4 |
return execute(route, request, context, null);
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
|
| 237 | |
} |
| |
| 239 | |
@Override |
| 240 | |
public CloseableHttpResponse execute( |
| 241 | |
final HttpRoute route, |
| 242 | |
final HttpRequestWrapper request, |
| 243 | |
final HttpClientContext context, |
| 244 | |
final HttpExecutionAware execAware) throws IOException, HttpException { |
| |
| 246 | 2742 |
final HttpHost target = context.getTargetHost();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 247 | 2742 |
final String via = generateViaHeader(request.getOriginal());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| |
| 249 | |
|
| 250 | 2742 |
setResponseStatus(context, CacheResponseStatus.CACHE_MISS);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| |
| 252 | 2742 |
if (clientRequestsOurOptions(request)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 253 | 3 |
setResponseStatus(context, CacheResponseStatus.CACHE_MODULE_RESPONSE);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
|
| 254 | 3 |
return Proxies.enhanceResponse(new OptionsHttp11Response());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
|
| 255 | |
} |
| |
| 257 | 2739 |
final HttpResponse fatalErrorResponse = getFatallyNoncompliantResponse(request, context);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 258 | 2739 |
if (fatalErrorResponse != null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 259 | 17 |
return Proxies.enhanceResponse(fatalErrorResponse);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
|
| 260 | |
} |
| |
| 262 | 2722 |
requestCompliance.makeRequestCompliant(request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 263 | 2721 |
request.addHeader("Via",via);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| |
| 265 | 2721 |
flushEntriesInvalidatedByRequest(context.getTargetHost(), request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| |
| 267 | 2721 |
if (!cacheableRequestPolicy.isServableFromCache(request)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 268 | 157 |
log.debug("Request is not servable from cache");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1548
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1493
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1413
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
|
| 269 | 157 |
return callBackend(route, request, context, execAware);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1548
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1493
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1413
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
|
| 270 | |
} |
| |
| 272 | 2564 |
final HttpCacheEntry entry = satisfyFromCache(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 273 | 2564 |
if (entry == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 274 | 2319 |
log.debug("Cache miss");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 275 | 2319 |
return handleCacheMiss(route, request, context, execAware);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 276 | |
} else { |
| 277 | 245 |
return handleCacheHit(route, request, context, execAware, entry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 278 | |
} |
| 279 | |
} |
| |
| 281 | |
private CloseableHttpResponse handleCacheHit( |
| 282 | |
final HttpRoute route, |
| 283 | |
final HttpRequestWrapper request, |
| 284 | |
final HttpClientContext context, |
| 285 | |
final HttpExecutionAware execAware, |
| 286 | |
final HttpCacheEntry entry) throws IOException, HttpException { |
| 287 | 245 |
final HttpHost target = context.getTargetHost();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 288 | 245 |
recordCacheHit(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 289 | 245 |
CloseableHttpResponse out = null;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 290 | 245 |
final Date now = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 291 | 245 |
if (suitabilityChecker.canCachedResponseBeUsed(target, request, entry, now)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 292 | 130 |
log.debug("Cache hit");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 293 | 130 |
out = generateCachedResponse(request, context, entry, now);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 294 | 115 |
} else if (!mayCallBackend(request)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 295 | 2 |
log.debug("Cache entry not suitable but only-if-cached requested");
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
|
| 296 | 2 |
out = generateGatewayTimeout(context);
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
|
| 297 | 113 |
} else if (!(entry.getStatusCode() == HttpStatus.SC_NOT_MODIFIED
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
|
| 298 | 3 |
&& !suitabilityChecker.isConditional(request))) {
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
|
| 299 | 112 |
log.debug("Revalidating cache entry");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 300 | 112 |
return revalidateCacheEntry(route, request, context, execAware, entry, now);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 301 | |
} else { |
| 302 | 1 |
log.debug("Cache entry not usable; calling backend");
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
|
| 303 | 1 |
return callBackend(route, request, context, execAware);
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
|
| 304 | |
} |
| 305 | 132 |
context.setAttribute(HttpClientContext.HTTP_ROUTE, route);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 306 | 132 |
context.setAttribute(HttpCoreContext.HTTP_TARGET_HOST, target);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 307 | 132 |
context.setAttribute(HttpCoreContext.HTTP_REQUEST, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 308 | 132 |
context.setAttribute(HttpCoreContext.HTTP_RESPONSE, out);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 309 | 132 |
context.setAttribute(HttpCoreContext.HTTP_REQ_SENT, Boolean.TRUE);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 310 | 132 |
return out;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157
|
| 311 | |
} |
| |
| 313 | |
private CloseableHttpResponse revalidateCacheEntry( |
| 314 | |
final HttpRoute route, |
| 315 | |
final HttpRequestWrapper request, |
| 316 | |
final HttpClientContext context, |
| 317 | |
final HttpExecutionAware execAware, |
| 318 | |
final HttpCacheEntry entry, |
| 319 | |
final Date now) throws HttpException { |
| |
| 321 | |
try { |
| 322 | 112 |
if (asynchRevalidator != null
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 323 | 6 |
&& !staleResponseNotAllowed(request, entry, now)
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 324 | 6 |
&& validityPolicy.mayReturnStaleWhileRevalidating(entry, now)) {
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 325 | 4 |
log.trace("Serving stale with asynchronous revalidation");
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 326 | 4 |
final CloseableHttpResponse resp = generateCachedResponse(request, context, entry, now);
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 327 | 4 |
asynchRevalidator.revalidateCacheEntry(this, route, request, context, execAware, entry);
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 328 | 4 |
return resp;
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 329 | |
} |
| 330 | 108 |
return revalidateCacheEntry(route, request, context, execAware, entry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 331 | 16 |
} catch (final IOException ioex) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
|
| 332 | 16 |
return handleRevalidationFailure(request, context, entry, now);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
|
| 333 | |
} |
| 334 | |
} |
| |
| 336 | |
private CloseableHttpResponse handleCacheMiss( |
| 337 | |
final HttpRoute route, |
| 338 | |
final HttpRequestWrapper request, |
| 339 | |
final HttpClientContext context, |
| 340 | |
final HttpExecutionAware execAware) throws IOException, HttpException { |
| 341 | 2319 |
final HttpHost target = context.getTargetHost();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 342 | 2319 |
recordCacheMiss(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| |
| 344 | 2319 |
if (!mayCallBackend(request)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 345 | 2 |
return Proxies.enhanceResponse(
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
|
| 346 | |
new BasicHttpResponse( |
| 347 | |
HttpVersion.HTTP_1_1, HttpStatus.SC_GATEWAY_TIMEOUT, "Gateway Timeout")); |
| 348 | |
} |
| |
| 350 | 2317 |
final Map<String, Variant> variants = getExistingCacheVariants(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 351 | 2317 |
if (variants != null && !variants.isEmpty()) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 352 | 17 |
return negotiateResponseFromVariants(route, request, context,
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| 353 | |
execAware, variants); |
| 354 | |
} |
| |
| 356 | 2300 |
return callBackend(route, request, context, execAware);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 357 | |
} |
| |
| 359 | |
private HttpCacheEntry satisfyFromCache( |
| 360 | |
final HttpHost target, final HttpRequestWrapper request) { |
| 361 | 2564 |
HttpCacheEntry entry = null;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 362 | |
try { |
| 363 | 2564 |
entry = responseCache.getCacheEntry(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 364 | 1 |
} catch (final IOException ioe) {
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
|
| 365 | 1 |
log.warn("Unable to retrieve entries from cache", ioe);
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
|
| 366 | 2563 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 367 | 2564 |
return entry;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 368 | |
} |
| |
| 370 | |
private HttpResponse getFatallyNoncompliantResponse( |
| 371 | |
final HttpRequestWrapper request, |
| 372 | |
final HttpContext context) { |
| 373 | 2739 |
HttpResponse fatalErrorResponse = null;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 374 | 2739 |
final List<RequestProtocolError> fatalError = requestCompliance.requestIsFatallyNonCompliant(request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| |
| 376 | 2739 |
for (final RequestProtocolError error : fatalError) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
|
| 377 | 17 |
setResponseStatus(context, CacheResponseStatus.CACHE_MODULE_RESPONSE);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
|
| 378 | 17 |
fatalErrorResponse = requestCompliance.getErrorForRequest(error);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
|
| 379 | 17 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
|
| 380 | 2739 |
return fatalErrorResponse;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 381 | |
} |
| |
| 383 | |
private Map<String, Variant> getExistingCacheVariants( |
| 384 | |
final HttpHost target, |
| 385 | |
final HttpRequestWrapper request) { |
| 386 | 2317 |
Map<String,Variant> variants = null;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 387 | |
try { |
| 388 | 2317 |
variants = responseCache.getVariantCacheEntriesWithEtags(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 389 | 1 |
} catch (final IOException ioe) {
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
|
| 390 | 1 |
log.warn("Unable to retrieve variant entries from cache", ioe);
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
|
| 391 | 2316 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 392 | 2317 |
return variants;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 393 | |
} |
| |
| 395 | |
private void recordCacheMiss(final HttpHost target, final HttpRequestWrapper request) { |
| 396 | 2319 |
cacheMisses.getAndIncrement();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 397 | 2319 |
if (log.isTraceEnabled()) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 398 | 0 |
final RequestLine rl = request.getRequestLine();
|
| 399 | 0 |
log.trace("Cache miss [host: " + target + "; uri: " + rl.getUri() + "]");
|
| 400 | |
} |
| 401 | 2319 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| |
| 403 | |
private void recordCacheHit(final HttpHost target, final HttpRequestWrapper request) { |
| 404 | 245 |
cacheHits.getAndIncrement();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 405 | 245 |
if (log.isTraceEnabled()) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 406 | 0 |
final RequestLine rl = request.getRequestLine();
|
| 407 | 0 |
log.trace("Cache hit [host: " + target + "; uri: " + rl.getUri() + "]");
|
| 408 | |
} |
| 409 | 245 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| |
| 411 | |
private void recordCacheUpdate(final HttpContext context) { |
| 412 | 93 |
cacheUpdates.getAndIncrement();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 413 | 93 |
setResponseStatus(context, CacheResponseStatus.VALIDATED);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 414 | 93 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| |
| 416 | |
private void flushEntriesInvalidatedByRequest( |
| 417 | |
final HttpHost target, |
| 418 | |
final HttpRequestWrapper request) { |
| 419 | |
try { |
| 420 | 2721 |
responseCache.flushInvalidatedCacheEntriesFor(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 421 | 1 |
} catch (final IOException ioe) {
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
|
| 422 | 1 |
log.warn("Unable to flush invalidated entries from cache", ioe);
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
|
| 423 | 2720 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 424 | 2721 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| |
| 426 | |
private CloseableHttpResponse generateCachedResponse(final HttpRequestWrapper request, |
| 427 | |
final HttpContext context, final HttpCacheEntry entry, final Date now) { |
| 428 | |
final CloseableHttpResponse cachedResponse; |
| 429 | 134 |
if (request.containsHeader(HeaderConstants.IF_NONE_MATCH)
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 430 | 113 |
|| request.containsHeader(HeaderConstants.IF_MODIFIED_SINCE)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 431 | 30 |
cachedResponse = responseGenerator.generateNotModifiedResponse(entry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
|
| 432 | |
} else { |
| 433 | 104 |
cachedResponse = responseGenerator.generateResponse(request, entry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 434 | |
} |
| 435 | 134 |
setResponseStatus(context, CacheResponseStatus.CACHE_HIT);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 436 | 134 |
if (validityPolicy.getStalenessSecs(entry, now) > 0L) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 437 | 8 |
cachedResponse.addHeader(HeaderConstants.WARNING,"110 localhost \"Response is stale\"");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 438 | |
} |
| 439 | 134 |
return cachedResponse;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1381x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 231
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 90
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1589
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 151, 157, 171
|
| 440 | |
} |
| |
| 442 | |
private CloseableHttpResponse handleRevalidationFailure( |
| 443 | |
final HttpRequestWrapper request, |
| 444 | |
final HttpContext context, |
| 445 | |
final HttpCacheEntry entry, |
| 446 | |
final Date now) { |
| 447 | 16 |
if (staleResponseNotAllowed(request, entry, now)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
|
| 448 | 9 |
return generateGatewayTimeout(context);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
|
| 449 | |
} else { |
| 450 | 7 |
return unvalidatedCacheHit(request, context, entry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
|
| 451 | |
} |
| 452 | |
} |
| |
| 454 | |
private CloseableHttpResponse generateGatewayTimeout( |
| 455 | |
final HttpContext context) { |
| 456 | 11 |
setResponseStatus(context, CacheResponseStatus.CACHE_MODULE_RESPONSE);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
|
| 457 | 11 |
return Proxies.enhanceResponse(new BasicHttpResponse(
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
|
| 458 | |
HttpVersion.HTTP_1_1, HttpStatus.SC_GATEWAY_TIMEOUT, |
| 459 | |
"Gateway Timeout")); |
| 460 | |
} |
| |
| 462 | |
private CloseableHttpResponse unvalidatedCacheHit( |
| 463 | |
final HttpRequestWrapper request, |
| 464 | |
final HttpContext context, |
| 465 | |
final HttpCacheEntry entry) { |
| 466 | 7 |
final CloseableHttpResponse cachedResponse = responseGenerator.generateResponse(request, entry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
|
| 467 | 7 |
setResponseStatus(context, CacheResponseStatus.CACHE_HIT);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
|
| 468 | 7 |
cachedResponse.addHeader(HeaderConstants.WARNING, "111 localhost \"Revalidation failed\"");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
|
| 469 | 7 |
return cachedResponse;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
|
| 470 | |
} |
| |
| 472 | |
private boolean staleResponseNotAllowed( |
| 473 | |
final HttpRequestWrapper request, |
| 474 | |
final HttpCacheEntry entry, |
| 475 | |
final Date now) { |
| 476 | 32 |
return validityPolicy.mustRevalidate(entry)
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 477 | 28 |
|| (cacheConfig.isSharedCache() && validityPolicy.proxyRevalidate(entry))
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 478 | 25 |
|| explicitFreshnessRequest(request, entry, now);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 479 | |
} |
| |
| 481 | |
private boolean mayCallBackend(final HttpRequestWrapper request) { |
| 482 | 2477 |
for (final Header h: request.getHeaders(HeaderConstants.CACHE_CONTROL)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 171, 184
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
|
| 483 | 104 |
for (final HeaderElement elt : h.getElements()) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x6
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x3
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x3
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x4
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
|
| 484 | 61 |
if ("only-if-cached".equals(elt.getName())) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x4
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
|
| 485 | 4 |
log.trace("Request marked only-if-cached");
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
|
| 486 | 4 |
return false;
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
|
| 487 | |
} |
| 488 | |
} |
| 489 | |
} |
| 490 | 2430 |
return true;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 171, 184
|
| 491 | |
} |
| |
| 493 | |
private boolean explicitFreshnessRequest( |
| 494 | |
final HttpRequestWrapper request, |
| 495 | |
final HttpCacheEntry entry, |
| 496 | |
final Date now) { |
| 497 | 28 |
for(final Header h : request.getHeaders(HeaderConstants.CACHE_CONTROL)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
|
| 498 | 13 |
for(final HeaderElement elt : h.getElements()) {
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x3
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
|
| 499 | 10 |
if (HeaderConstants.CACHE_CONTROL_MAX_STALE.equals(elt.getName())) {
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
|
| 500 | |
try { |
| 501 | 1 |
final int maxstale = Integer.parseInt(elt.getValue());
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
|
| 502 | 1 |
final long age = validityPolicy.getCurrentAgeSecs(entry, now);
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
|
| 503 | 1 |
final long lifetime = validityPolicy.getFreshnessLifetimeSecs(entry);
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
|
| 504 | 1 |
if (age - lifetime > maxstale) {
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
|
| 505 | 1 |
return true;
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
|
| 506 | |
} |
| 507 | 0 |
} catch (final NumberFormatException nfe) {
|
| 508 | 0 |
return true;
|
| 509 | 0 |
}
|
| 510 | 9 |
} else if (HeaderConstants.CACHE_CONTROL_MIN_FRESH.equals(elt.getName())
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
|
| 511 | 7 |
|| HeaderConstants.CACHE_CONTROL_MAX_AGE.equals(elt.getName())) {
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236x2
|
| 512 | 4 |
return true;
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
|
| 513 | |
} |
| 514 | |
} |
| 515 | |
} |
| 516 | 20 |
return false;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 171
|
| 517 | |
} |
| |
| 519 | |
private String generateViaHeader(final HttpMessage msg) { |
| |
| 521 | 5313 |
final ProtocolVersion pv = msg.getProtocolVersion();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x4, 4120x4, 4121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x4, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x4, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x4, 1552x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x4, 2056x4, 2057x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x4, 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x4, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x4, 4445x4, 4446x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x4, 4336x4, 4337x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x4, 2764x4, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x4, 3332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x4, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x4, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x4, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x4, 5874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x4, 5621x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x4, 1647x4, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x4, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x4, 5496x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x4, 1741x4, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x4, 3991x4, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x4, 5581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x4, 4281x4, 4282x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x4, 2692x4, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x4, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x4, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x4, 3234x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x4, 4227x4, 4228x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x4, 4173x4, 4174x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x392, 538x372, 541x368, 544x328, 547x1976
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x4, 3732x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x4, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x4, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x4, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x4, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x4, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x4, 4521x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x4, 4068x4, 4069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x4, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x4, 3947x4, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x4, 4391x4, 4392x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x4, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x4, 5522x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x4, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x4, 5556x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x4, 4487x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x4, 1453x4, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x4, 2976x4, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x4, 5782x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x4, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x4, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x4, 2432x4
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024x2, 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457x2, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281x2, 1283x2, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562x2, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692x2, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723x2, 724x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534x2, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826x2, 827x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429x2, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487x2, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756x2, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064x2, 1065x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295x2, 296x2, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666x2, 667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988x2, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959x2, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666x2, 1667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510x2, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517x2, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471x2, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929x2, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683x2, 1686x2, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599x2, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211x2, 1213x2, 1215x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503x2, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634x2, 635x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261x2, 262x2, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579x2, 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443x2, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900x2, 901x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787x2, 788x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230x2, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621x2, 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863x2, 864x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145x2, 1146x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104x2, 1105x2
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124x2, 143x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68x2, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89x2, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997x2, 998x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055x2, 1056x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761x2, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261x2, 1262x2, 1263x2, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805x2, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948x2, 949x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546x2, 1547x2, 1548x2, 1549x2, 1550x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740x2, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651x2, 1652x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362x2, 1363x2, 1364x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506x2, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492x2, 1493x2, 1494x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565x2, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784x2, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412x2, 1413x2, 1414x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625x2, 1626x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113x2, 1114x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304x2, 1305x2, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189x2, 1190x2, 1191x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587x2, 1588x2, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160x2, 161x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310x2, 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85x2, 86x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543x2, 544x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595x2, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492x2, 493x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136x2, 137x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352x2, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211x2, 212x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441x2, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113x2, 114x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284x2, 285x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260x2, 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235x2, 236x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187x2, 188x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396x2, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139x2, 151, 157, 171, 184x2
|
| 522 | 5313 |
final String existingEntry = viaHeaders.get(pv);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x4, 4120x4, 4121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x4, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x4, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x4, 1552x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x4, 2056x4, 2057x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x4, 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x4, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x4, 4445x4, 4446x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x4, 4336x4, 4337x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x4, 2764x4, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x4, 3332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x4, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x4, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x4, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x4, 5874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x4, 5621x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x4, 1647x4, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x4, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x4, 5496x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x4, 1741x4, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x4, 3991x4, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x4, 5581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x4, 4281x4, 4282x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x4, 2692x4, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x4, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x4, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x4, 3234x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x4, 4227x4, 4228x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x4, 4173x4, 4174x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x392, 538x372, 541x368, 544x328, 547x1976
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x4, 3732x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x4, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x4, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x4, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x4, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x4, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x4, 4521x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x4, 4068x4, 4069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x4, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x4, 3947x4, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x4, 4391x4, 4392x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x4, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x4, 5522x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x4, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x4, 5556x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x4, 4487x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x4, 1453x4, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x4, 2976x4, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x4, 5782x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x4, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x4, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x4, 2432x4
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024x2, 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457x2, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281x2, 1283x2, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562x2, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692x2, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723x2, 724x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534x2, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826x2, 827x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429x2, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487x2, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756x2, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064x2, 1065x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295x2, 296x2, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666x2, 667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988x2, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959x2, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666x2, 1667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510x2, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517x2, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471x2, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929x2, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683x2, 1686x2, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599x2, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211x2, 1213x2, 1215x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503x2, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634x2, 635x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261x2, 262x2, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579x2, 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443x2, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900x2, 901x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787x2, 788x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230x2, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621x2, 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863x2, 864x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145x2, 1146x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104x2, 1105x2
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124x2, 143x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68x2, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89x2, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997x2, 998x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055x2, 1056x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761x2, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261x2, 1262x2, 1263x2, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805x2, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948x2, 949x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546x2, 1547x2, 1548x2, 1549x2, 1550x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740x2, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651x2, 1652x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362x2, 1363x2, 1364x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506x2, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492x2, 1493x2, 1494x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565x2, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784x2, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412x2, 1413x2, 1414x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625x2, 1626x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113x2, 1114x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304x2, 1305x2, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189x2, 1190x2, 1191x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587x2, 1588x2, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160x2, 161x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310x2, 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85x2, 86x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543x2, 544x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595x2, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492x2, 493x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136x2, 137x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352x2, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211x2, 212x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441x2, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113x2, 114x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284x2, 285x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260x2, 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235x2, 236x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187x2, 188x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396x2, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139x2, 151, 157, 171, 184x2
|
| 523 | 5313 |
if (existingEntry != null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x4, 4120x4, 4121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x4, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x4, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x4, 1552x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x4, 2056x4, 2057x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x4, 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x4, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x4, 4445x4, 4446x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x4, 4336x4, 4337x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x4, 2764x4, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x4, 3332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x4, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x4, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x4, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x4, 5874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x4, 5621x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x4, 1647x4, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x4, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x4, 5496x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x4, 1741x4, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x4, 3991x4, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x4, 5581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x4, 4281x4, 4282x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x4, 2692x4, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x4, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x4, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x4, 3234x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x4, 4227x4, 4228x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x4, 4173x4, 4174x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x392, 538x372, 541x368, 544x328, 547x1976
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x4, 3732x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x4, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x4, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x4, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x4, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x4, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x4, 4521x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x4, 4068x4, 4069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x4, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x4, 3947x4, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x4, 4391x4, 4392x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x4, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x4, 5522x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x4, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x4, 5556x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x4, 4487x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x4, 1453x4, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x4, 2976x4, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x4, 5782x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x4, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x4, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x4, 2432x4
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024x2, 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457x2, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281x2, 1283x2, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562x2, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692x2, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723x2, 724x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534x2, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826x2, 827x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429x2, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487x2, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756x2, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064x2, 1065x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295x2, 296x2, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666x2, 667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988x2, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959x2, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666x2, 1667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510x2, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517x2, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471x2, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929x2, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683x2, 1686x2, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599x2, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211x2, 1213x2, 1215x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503x2, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634x2, 635x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261x2, 262x2, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579x2, 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443x2, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900x2, 901x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787x2, 788x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230x2, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621x2, 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863x2, 864x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145x2, 1146x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104x2, 1105x2
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124x2, 143x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68x2, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89x2, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997x2, 998x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055x2, 1056x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761x2, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261x2, 1262x2, 1263x2, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805x2, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948x2, 949x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546x2, 1547x2, 1548x2, 1549x2, 1550x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740x2, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651x2, 1652x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362x2, 1363x2, 1364x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506x2, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492x2, 1493x2, 1494x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565x2, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784x2, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412x2, 1413x2, 1414x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625x2, 1626x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113x2, 1114x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304x2, 1305x2, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189x2, 1190x2, 1191x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587x2, 1588x2, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160x2, 161x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310x2, 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85x2, 86x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543x2, 544x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595x2, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492x2, 493x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136x2, 137x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352x2, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211x2, 212x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441x2, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113x2, 114x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284x2, 285x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260x2, 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235x2, 236x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187x2, 188x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396x2, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139x2, 151, 157, 171, 184x2
|
| 524 | 2941 |
return existingEntry;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x4, 4121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x4, 2057x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x4, 4446x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x4, 4337x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x4, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x4, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x4, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x4, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x4, 4282x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x4, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x4, 4228x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x4, 4174x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x4, 4069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x4, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x4, 4392x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x4, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x4, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x4
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283x2, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296x2, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686x2, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213x2, 1215x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262x2, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105x2
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262x2, 1263x2, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547x2, 1548x2, 1549x2, 1550x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363x2, 1364x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493x2, 1494x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413x2, 1414x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305x2, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190x2, 1191x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588x2, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184x2
|
| 525 | |
} |
| |
| 527 | 2372 |
final VersionInfo vi = VersionInfo.loadVersionInfo("org.apache.http.client", getClass().getClassLoader());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| 528 | 2372 |
final String release = (vi != null) ? vi.getRelease() : VersionInfo.UNAVAILABLE;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| |
| 530 | |
String value; |
| 531 | 2372 |
final int major = pv.getMajor();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| 532 | 2372 |
final int minor = pv.getMinor();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| 533 | 2372 |
if ("http".equalsIgnoreCase(pv.getProtocol())) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| 534 | 2372 |
value = String.format("%d.%d localhost (Apache-HttpClient/%s (cache))", major, minor,
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| 535 | |
release); |
| 536 | |
} else { |
| 537 | 0 |
value = String.format("%s/%d.%d localhost (Apache-HttpClient/%s (cache))", pv.getProtocol(), major,
|
| 538 | 0 |
minor, release);
|
| 539 | |
} |
| 540 | 2372 |
viaHeaders.put(pv, value);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| |
| 542 | 2372 |
return value;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139
|
| 543 | |
} |
| |
| 545 | |
private void setResponseStatus(final HttpContext context, final CacheResponseStatus value) { |
| 546 | 3007 |
if (context != null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x4, 2765x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x4, 3992x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x4, 2693x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x4, 3948x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296x2, 297x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105x2
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143x3
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263x2, 1264x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305x2, 1306x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588x2, 1589x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397x2
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151x2, 157x2, 171x2, 184
|
| 547 | 3007 |
context.setAttribute(HttpCacheContext.CACHE_RESPONSE_STATUS, value);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x4, 2765x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x4, 3992x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x4, 2693x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x4, 3948x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296x2, 297x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105x2
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143x3
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263x2, 1264x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305x2, 1306x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588x2, 1589x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397x2
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151x2, 157x2, 171x2, 184
|
| 548 | |
} |
| 549 | 3007 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x4, 2765x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x4, 3992x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x4, 2693x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x4, 3948x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296x2, 297x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105x2
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143x3
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263x2, 1264x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305x2, 1306x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588x2, 1589x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397x2
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151x2, 157x2, 171x2, 184
|
| |
| |
| 557 | |
public boolean supportsRangeAndContentRangeHeaders() { |
| 558 | 4 |
return SUPPORTS_RANGE_AND_CONTENT_RANGE_HEADERS;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3285x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1772x2
|
| 559 | |
} |
| |
| 561 | |
Date getCurrentDate() { |
| 562 | 5408 |
return new Date();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x4, 4120x4, 4121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x4, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x14
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x4, 3159x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x4, 1552x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x4, 2056x4, 2057x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x4, 6202x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x4, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x4, 4445x4, 4446x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x4, 4336x4, 4337x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x4, 2764x6, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x4, 3332x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x4, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x4, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x4, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x14
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x4, 5874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x4, 5621x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x4, 1647x4, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x4, 5496x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x4, 1741x4, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x4, 3991x6, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x4, 5581x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x4, 4281x4, 4282x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x4, 2692x6, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x4, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x4, 3234x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x4, 4227x4, 4228x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x4, 4173x4, 4174x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x392, 538x372, 541x368, 544x328, 547x1976
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x14
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x4, 3732x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x4, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x4, 4600x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x4, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x4, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x4, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x4, 4521x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x4, 4068x4, 4069x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x4, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x14
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x4, 3947x6, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x4, 4391x4, 4392x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x10
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x4, 2195x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x4, 5522x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x4, 2272x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x4, 5556x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x12
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x4, 4487x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x4, 1453x4, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x8
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x4, 2976x4, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x4, 5782x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x4, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x4, 3898x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x4, 2432x4
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210x3
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024x2, 1025x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457x2, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281x2, 1283x2, 1285x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562x2, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692x2, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723x2, 724x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534x2, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826x2, 827x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429x2, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487x2, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756x2, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064x2, 1065x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295x2, 296x3, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666x2, 667x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988x2, 989x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959x2, 960x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666x2, 1667x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510x2, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517x2, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471x2, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929x2, 930x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683x2, 1686x2, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599x2, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211x2, 1213x2, 1215x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503x2, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634x2, 635x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261x2, 262x2, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579x2, 1580x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443x2, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900x2, 901x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787x2, 788x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230x2, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621x2, 1622x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863x2, 864x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145x2, 1146x3
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104x2, 1105x3
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124x2, 143x3
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68x2, 69x2
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89x2, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373x2
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997x2, 998x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055x2, 1056x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761x2, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261x2, 1262x2, 1263x2, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805x2, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948x2, 949x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546x2, 1547x2, 1548x2, 1549x2, 1550x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740x2, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651x2, 1652x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362x2, 1363x2, 1364x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506x2, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492x2, 1493x2, 1494x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565x2, 566x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784x2, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412x2, 1413x2, 1414x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625x2, 1626x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113x2, 1114x5
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304x2, 1305x2, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189x2, 1190x2, 1191x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x3
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587x2, 1588x3, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x4
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779x2
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160x2, 161x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310x2, 311x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85x2, 86x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543x2, 544x3
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595x2, 596x3
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492x2, 493x3
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136x2, 137x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352x2, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211x2, 212x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441x2, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113x2, 114x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284x2, 285x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260x2, 261x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235x2, 236x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187x2, 188x4
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396x2, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139x2, 151, 157, 171, 184x2
|
| 563 | |
} |
| |
| 565 | |
boolean clientRequestsOurOptions(final HttpRequest request) { |
| 566 | 2742 |
final RequestLine line = request.getRequestLine();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| |
| 568 | 2742 |
if (!HeaderConstants.OPTIONS_METHOD.equals(line.getMethod())) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 569 | 2729 |
return false;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2, 3270x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2, 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2, 1407x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2, 2764x2, 2765x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2, 3635x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2, 1263x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfNoneMatchWeakETagIsNotAllowed: 3069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2, 1989x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETWithWeakETagIsNotAllowed: 3028x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotTransmitNoCacheDirectivesWithFieldsDownstream: 5259x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2, 1648x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2, 3109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2, 1742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2, 3991x2, 3992x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2, 2692x2, 2693x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2, 1503x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2, 1329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnAFreshEnoughCacheEntryIfItHasIt: 2558x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETEWithIfMatchWeakETagIsNotAllowed: 3060x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfNoneMatchWeakETagIsNotAllowed: 3051x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testAgeHeaderPopulatedFromCacheEntryCurrentAge: 2825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2, 1295x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2, 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2, 1959x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2, 5223x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2, 1924x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2, 2110x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTWithIfMatchWeakETagIsNotAllowed: 3040x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2, 3947x2, 3948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2, 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2, 1454x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2, 2977x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2, 1381x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2, 3898x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableValidatableCacheEntryCausesRevalidation: 241
- org.apache.http.impl.client.cache.TestCachingExec#testRequestThatCannotBeServedFromCacheCausesBackendRequest: 164
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testCacheMissCausesBackendRequest: 183
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024, 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457, 1458
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562, 563
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692, 693
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndNoCacheEntryBackendNotCalled: 1374
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryNotSuitableBackendNotCalled: 1394
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534, 535
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429, 1430
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCompliantRequestWrapsAndReThrowsProtocolException: 379
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487, 1488
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756, 757
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296, 297
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988, 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959, 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testIfOnlyIfCachedAndEntryExistsAndIsSuitableReturnsEntry: 1414
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510, 511
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517, 1518
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471, 1472
- org.apache.http.impl.client.cache.TestCachingExecChain#testResponseIsGeneratedWhenCacheEntryIsUsable: 363
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929, 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686, 1688
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599, 600
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503, 1504
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForFatallyNoncompliantRequest: 409
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262, 263
- org.apache.http.impl.client.cache.TestCachingExecChain#testSuitableCacheEntryDoesNotCauseBackendRequest: 323
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579, 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443, 1444
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230, 231
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621, 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104, 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68, 69
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89, 90
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055, 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761, 1762
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262, 1263, 1264
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805, 1806
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740, 1741
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheMissResultsIn504WithOnlyIfCached: 1720
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506, 507
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565, 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784, 1785
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304, 1305, 1306
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588, 1589
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85, 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352, 353
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441, 442
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113, 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260, 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235, 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187, 188
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396, 397
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 151, 157, 171, 184
|
| 570 | |
} |
| |
| 572 | 13 |
if (!"*".equals(line.getUri())) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
|
| 573 | 8 |
return false;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
|
| 574 | |
} |
| |
| 576 | 5 |
if (!"0".equals(request.getFirstHeader(HeaderConstants.MAX_FORWARDS).getValue())) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
|
| 577 | 2 |
return false;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
|
| 578 | |
} |
| |
| 580 | 3 |
return true;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotForwardOPTIONSWhenMaxForwardsIsZeroOnAbsoluteURIRequest: 849x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleGeneratedResponseContextForCacheOptionsResponse: 395
|
| 581 | |
} |
| |
| 583 | |
CloseableHttpResponse callBackend( |
| 584 | |
final HttpRoute route, |
| 585 | |
final HttpRequestWrapper request, |
| 586 | |
final HttpClientContext context, |
| 587 | |
final HttpExecutionAware execAware) throws IOException, HttpException { |
| |
| 589 | 2457 |
final Date requestDate = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| |
| 591 | 2457 |
log.trace("Calling the backend");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 592 | 2457 |
final CloseableHttpResponse backendResponse = backend.execute(route, request, context, execAware);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 593 | |
try { |
| 594 | 2455 |
backendResponse.addHeader("Via", generateViaHeader(backendResponse));
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 595 | 2455 |
return handleBackendResponse(request, context, requestDate, getCurrentDate(),
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testCallBackendMakesBackEndRequestAndHandlesResponse: 403
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 596 | |
backendResponse); |
| 597 | 4 |
} catch (final IOException ex) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
|
| 598 | 4 |
backendResponse.close();
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
|
| 599 | 4 |
throw ex;
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
|
| 600 | 0 |
} catch (final RuntimeException ex) {
|
| 601 | 0 |
backendResponse.close();
|
| 602 | 0 |
throw ex;
|
| 603 | |
} |
| 604 | |
} |
| |
| 606 | |
private boolean revalidationResponseIsTooOld(final HttpResponse backendResponse, |
| 607 | |
final HttpCacheEntry cacheEntry) { |
| 608 | 104 |
final Header entryDateHeader = cacheEntry.getFirstHeader(HTTP.DATE_HEADER);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 609 | 104 |
final Header responseDateHeader = backendResponse.getFirstHeader(HTTP.DATE_HEADER);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 610 | 104 |
if (entryDateHeader != null && responseDateHeader != null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 611 | 86 |
final Date entryDate = DateUtils.parseDate(entryDateHeader.getValue());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 612 | 86 |
final Date respDate = DateUtils.parseDate(responseDateHeader.getValue());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 613 | 86 |
if (entryDate == null || respDate == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 614 | |
|
| 615 | |
|
| 616 | |
|
| 617 | |
|
| 618 | 0 |
return false;
|
| 619 | |
} |
| 620 | 86 |
if (respDate.before(entryDate)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 621 | 1 |
return true;
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
|
| 622 | |
} |
| 623 | |
} |
| 624 | 103 |
return false;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 625 | |
} |
| |
| 627 | |
CloseableHttpResponse negotiateResponseFromVariants( |
| 628 | |
final HttpRoute route, |
| 629 | |
final HttpRequestWrapper request, |
| 630 | |
final HttpClientContext context, |
| 631 | |
final HttpExecutionAware execAware, |
| 632 | |
final Map<String, Variant> variants) throws IOException, HttpException { |
| 633 | 17 |
final HttpRequestWrapper conditionalRequest = conditionalRequestBuilder
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| 634 | 17 |
.buildConditionalRequestFromVariants(request, variants);
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| |
| 636 | 17 |
final Date requestDate = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| 637 | 17 |
final CloseableHttpResponse backendResponse = backend.execute(
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| 638 | |
route, conditionalRequest, context, execAware); |
| 639 | |
try { |
| 640 | 17 |
final Date responseDate = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| |
| 642 | 17 |
backendResponse.addHeader("Via", generateViaHeader(backendResponse));
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| |
| 644 | 17 |
if (backendResponse.getStatusLine().getStatusCode() != HttpStatus.SC_NOT_MODIFIED) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283, 1285
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262, 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| 645 | 12 |
return handleBackendResponse(request, context, requestDate, responseDate,
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4487x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1213, 1215
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1190, 1191
|
| 646 | |
backendResponse); |
| 647 | |
} |
| |
| 649 | 5 |
final Header resultEtagHeader = backendResponse.getFirstHeader(HeaderConstants.ETAG);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 650 | 5 |
if (resultEtagHeader == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 651 | 0 |
log.warn("304 response did not contain ETag");
|
| 652 | 0 |
IOUtils.consume(backendResponse.getEntity());
|
| 653 | 0 |
backendResponse.close();
|
| 654 | 0 |
return callBackend(route, request, context, execAware);
|
| 655 | |
} |
| |
| 657 | 5 |
final String resultEtag = resultEtagHeader.getValue();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 658 | 5 |
final Variant matchingVariant = variants.get(resultEtag);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 659 | 5 |
if (matchingVariant == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 660 | 0 |
log.debug("304 response did not contain ETag matching one sent in If-None-Match");
|
| 661 | 0 |
IOUtils.consume(backendResponse.getEntity());
|
| 662 | 0 |
backendResponse.close();
|
| 663 | 0 |
return callBackend(route, request, context, execAware);
|
| 664 | |
} |
| |
| 666 | 5 |
final HttpCacheEntry matchedEntry = matchingVariant.getEntry();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| |
| 668 | 5 |
if (revalidationResponseIsTooOld(backendResponse, matchedEntry)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 669 | 0 |
IOUtils.consume(backendResponse.getEntity());
|
| 670 | 0 |
backendResponse.close();
|
| 671 | 0 |
return retryRequestUnconditionally(route, request, context, execAware, matchedEntry);
|
| 672 | |
} |
| |
| 674 | 5 |
recordCacheUpdate(context);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| |
| 676 | 10 |
final HttpCacheEntry responseEntry = getUpdatedVariantEntry(
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x4
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305x2
|
| 677 | 5 |
context.getTargetHost(), conditionalRequest, requestDate, responseDate,
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 678 | |
backendResponse, matchingVariant, matchedEntry); |
| 679 | 5 |
backendResponse.close();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| |
| 681 | 5 |
final CloseableHttpResponse resp = responseGenerator.generateResponse(request, responseEntry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 682 | 5 |
tryToUpdateVariantMap(context.getTargetHost(), request, matchingVariant);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| |
| 684 | 5 |
if (shouldSendNotModifiedResponse(request, responseEntry)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 685 | 1 |
return responseGenerator.generateNotModifiedResponse(responseEntry);
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
|
| 686 | |
} |
| 687 | 4 |
return resp;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 688 | 0 |
} catch (final IOException ex) {
|
| 689 | 0 |
backendResponse.close();
|
| 690 | 0 |
throw ex;
|
| 691 | 0 |
} catch (final RuntimeException ex) {
|
| 692 | 0 |
backendResponse.close();
|
| 693 | 0 |
throw ex;
|
| 694 | |
} |
| 695 | |
} |
| |
| 697 | |
private CloseableHttpResponse retryRequestUnconditionally( |
| 698 | |
final HttpRoute route, |
| 699 | |
final HttpRequestWrapper request, |
| 700 | |
final HttpClientContext context, |
| 701 | |
final HttpExecutionAware execAware, |
| 702 | |
final HttpCacheEntry matchedEntry) throws IOException, HttpException { |
| 703 | 0 |
final HttpRequestWrapper unconditional = conditionalRequestBuilder
|
| 704 | 0 |
.buildUnconditionalRequest(request, matchedEntry);
|
| 705 | 0 |
return callBackend(route, unconditional, context, execAware);
|
| 706 | |
} |
| |
| 708 | |
private HttpCacheEntry getUpdatedVariantEntry( |
| 709 | |
final HttpHost target, |
| 710 | |
final HttpRequestWrapper conditionalRequest, |
| 711 | |
final Date requestDate, |
| 712 | |
final Date responseDate, |
| 713 | |
final CloseableHttpResponse backendResponse, |
| 714 | |
final Variant matchingVariant, |
| 715 | |
final HttpCacheEntry matchedEntry) throws IOException { |
| 716 | 5 |
HttpCacheEntry responseEntry = matchedEntry;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 717 | |
try { |
| 718 | 10 |
responseEntry = responseCache.updateVariantCacheEntry(target, conditionalRequest,
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x4
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305x2
|
| 719 | 5 |
matchedEntry, backendResponse, requestDate, responseDate, matchingVariant.getCacheKey());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 720 | 0 |
} catch (final IOException ioe) {
|
| 721 | 0 |
log.warn("Could not update cache entry", ioe);
|
| 722 | |
} finally { |
| 723 | 5 |
backendResponse.close();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 724 | 5 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 725 | 5 |
return responseEntry;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 726 | |
} |
| |
| 728 | |
private void tryToUpdateVariantMap( |
| 729 | |
final HttpHost target, |
| 730 | |
final HttpRequestWrapper request, |
| 731 | |
final Variant matchingVariant) { |
| 732 | |
try { |
| 733 | 5 |
responseCache.reuseVariantEntryFor(target, request, matchingVariant);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 734 | 0 |
} catch (final IOException ioe) {
|
| 735 | 0 |
log.warn("Could not update cache entry to reuse variant", ioe);
|
| 736 | 5 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 737 | 5 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| |
| 739 | |
private boolean shouldSendNotModifiedResponse( |
| 740 | |
final HttpRequestWrapper request, |
| 741 | |
final HttpCacheEntry responseEntry) { |
| 742 | 5 |
return (suitabilityChecker.isConditional(request)
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4600x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1263
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1305
|
| 743 | 1 |
&& suitabilityChecker.allConditionalsMatch(request, responseEntry, new Date()));
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1285
|
| 744 | |
} |
| |
| 746 | |
CloseableHttpResponse revalidateCacheEntry( |
| 747 | |
final HttpRoute route, |
| 748 | |
final HttpRequestWrapper request, |
| 749 | |
final HttpClientContext context, |
| 750 | |
final HttpExecutionAware execAware, |
| 751 | |
final HttpCacheEntry cacheEntry) throws IOException, HttpException { |
| |
| 753 | 114 |
final HttpRequestWrapper conditionalRequest = conditionalRequestBuilder.buildConditionalRequest(request, cacheEntry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 754 | 114 |
final URI uri = conditionalRequest.getURI();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 755 | 114 |
if (uri != null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 756 | |
try { |
| 757 | 18 |
conditionalRequest.setURI(URIUtils.rewriteURIForRoute(uri, route));
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
|
| 758 | 0 |
} catch (final URISyntaxException ex) {
|
| 759 | 0 |
throw new ProtocolException("Invalid URI: " + uri, ex);
|
| 760 | 18 |
}
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
|
| 761 | |
} |
| |
| 763 | 114 |
Date requestDate = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 764 | 114 |
CloseableHttpResponse backendResponse = backend.execute(
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustServeAppropriateErrorOrWarningIfNoOriginCommunicationPossible: 2614x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 989
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 960
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 930
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 69
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 566
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 765 | |
route, conditionalRequest, context, execAware); |
| 766 | 99 |
Date responseDate = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| |
| 768 | 99 |
if (revalidationResponseIsTooOld(backendResponse, cacheEntry)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 769 | 1 |
backendResponse.close();
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
|
| 770 | 1 |
final HttpRequestWrapper unconditional = conditionalRequestBuilder
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
|
| 771 | 1 |
.buildUnconditionalRequest(request, cacheEntry);
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
|
| 772 | 1 |
requestDate = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
|
| 773 | 1 |
backendResponse = backend.execute(route, unconditional, context, execAware);
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
|
| 774 | 1 |
responseDate = getCurrentDate();
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
|
| 775 | |
} |
| |
| 777 | 99 |
backendResponse.addHeader(HeaderConstants.VIA, generateViaHeader(backendResponse));
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| |
| 779 | 99 |
final int statusCode = backendResponse.getStatusLine().getStatusCode();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 780 | 99 |
if (statusCode == HttpStatus.SC_NOT_MODIFIED || statusCode == HttpStatus.SC_OK) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 781 | 88 |
recordCacheUpdate(context);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 782 | |
} |
| |
| 784 | 99 |
if (statusCode == HttpStatus.SC_NOT_MODIFIED) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 785 | 44 |
final HttpCacheEntry updatedEntry = responseCache.updateCacheEntry(
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x4
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056x2
|
| 786 | 22 |
context.getTargetHost(), request, cacheEntry,
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
|
| 787 | |
backendResponse, requestDate, responseDate); |
| 788 | 22 |
if (suitabilityChecker.isConditional(request)
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
|
| 789 | 4 |
&& suitabilityChecker.allConditionalsMatch(request, updatedEntry, new Date())) {
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
|
| 790 | 4 |
return responseGenerator
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
|
| 791 | 4 |
.generateNotModifiedResponse(updatedEntry);
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1025
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1580
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1622
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1105
|
| 792 | |
} |
| 793 | 18 |
return responseGenerator.generateResponse(request, updatedEntry);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6202x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2764x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2692x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3947x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustReturnACacheEntryIfItCanRevalidateIt: 2528x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2272x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3898x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationUpdatesCacheEntryAndPutsItToCacheWhen304ReturningCachedResponse: 308
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1056
|
| 794 | |
} |
| |
| 796 | 77 |
if (staleIfErrorAppliesTo(statusCode)
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 797 | 10 |
&& !staleResponseNotAllowed(request, cacheEntry, getCurrentDate())
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 798 | 7 |
&& validityPolicy.mayReturnStaleIfError(request, cacheEntry, responseDate)) {
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 799 | |
try { |
| 800 | 5 |
final CloseableHttpResponse cachedResponse = responseGenerator.generateResponse(request, cacheEntry);
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 801 | 5 |
cachedResponse.addHeader(HeaderConstants.WARNING, "110 localhost \"Response is stale\"");
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 802 | 5 |
return cachedResponse;
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 803 | |
} finally { |
| 804 | 5 |
backendResponse.close();
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 805 | |
} |
| 806 | |
} |
| 807 | 72 |
return handleBackendResponse(conditionalRequest, context, requestDate, responseDate,
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
|
| 808 | |
backendResponse); |
| 809 | |
} |
| |
| 811 | |
private boolean staleIfErrorAppliesTo(final int statusCode) { |
| 812 | 77 |
return statusCode == HttpStatus.SC_INTERNAL_SERVER_ERROR
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationCallsHandleBackEndResponseWhenNot200Or304: 274
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 86
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 114
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 261
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 236
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 188
|
| 813 | |
|| statusCode == HttpStatus.SC_BAD_GATEWAY |
| 814 | |
|| statusCode == HttpStatus.SC_SERVICE_UNAVAILABLE |
| 815 | |
|| statusCode == HttpStatus.SC_GATEWAY_TIMEOUT; |
| 816 | |
} |
| |
| 818 | |
CloseableHttpResponse handleBackendResponse( |
| 819 | |
final HttpRequestWrapper request, |
| 820 | |
final HttpClientContext context, |
| 821 | |
final Date requestDate, |
| 822 | |
final Date responseDate, |
| 823 | |
final CloseableHttpResponse backendResponse) throws IOException { |
| |
| 825 | 2537 |
log.trace("Handling Backend response");
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 826 | 2537 |
responseCompliance.ensureProtocolCompliance(request, backendResponse);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test100ContinueResponsesAreNotForwardedTo1_0ClientsWhoDidNotAskForThem: 771x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPartialContentIsNotReturnedToAClientThatDidNotAskForIt: 322
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| |
| 828 | 2534 |
final HttpHost target = context.getTargetHost();
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 829 | 2534 |
final boolean cacheable = responseCachingPolicy.isResponseCacheable(request, backendResponse);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 830 | 2534 |
responseCache.flushInvalidatedCacheEntriesFor(target, request, backendResponse);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 831 | 2534 |
if (cacheable && !alreadyHaveNewerCacheEntry(target, request, backendResponse)) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2, 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2, 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2, 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2, 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2, 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2, 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2, 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2, 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2, 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2, 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2, 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2, 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2, 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2, 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2, 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2, 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1548, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651, 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1363, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1493, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1413, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625, 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160, 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310, 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136, 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211, 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284, 285
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 832 | 552 |
storeRequestIfModifiedSinceFor304Response(request, backendResponse);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 833 | 552 |
return responseCache.cacheAndReturnResponse(target, request,
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 834 | |
backendResponse, requestDate, responseDate); |
| 835 | |
} |
| 836 | 1982 |
if (!cacheable) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1548
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1493
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1413
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
|
| 837 | |
try { |
| 838 | 1979 |
responseCache.flushCacheEntriesFor(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1548
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1493
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1413
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
|
| 839 | 0 |
} catch (final IOException ioe) {
|
| 840 | 0 |
log.warn("Unable to flush invalid cache entries", ioe);
|
| 841 | 1979 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1548
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1493
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1413
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
|
| 842 | |
} |
| 843 | 1982 |
return backendResponse;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeProxyAuthenticateHeaderFromAnOrigin407Response: 2360x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4119x2, 4120x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToTRACEsAreNotCached: 1166x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnResponses: 453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderOnRequest: 3525x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test205ResponsesDoNotContainMessageBodies: 1219x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToRequestIfNotPresent: 3566x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromForwardedResponses: 6281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardedTRACERequestsDoNotIncludeAnEntity: 1132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsNotExpecting100ContinueBehaviorShouldNotSetExpectContinueHeader: 668x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseReturnedToClientMustHaveDateHeader: 1357x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4444x2, 4445x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeToRequestIfNotPresent: 3789x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnRequests: 382x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToRequestIfNotPresent: 3581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDELETERequestsAreWrittenThroughToOrigin: 4948x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4335x2, 4336x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToRequestIfNotPresent: 3804x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCache: 5677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test302ResponseWithoutExplicitCacheabilityIsNotReturnedFromCache: 3331x2, 3332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderOnRequest: 3520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCONNECTRequestsAreWrittenThroughToOrigin: 4964x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheOnFieldIsNotReturnedWithoutRevalidation: 5620x2, 5621x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1647x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotAddMultipartByteRangeContentTypeTo416Response: 2387x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1741x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPUTsAreNotCached: 1079x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheWithoutSupportForRangeAndContentRangeHeadersDoesNotCacheA206Response: 3304x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnResponseIsNotStoredInCacheEvenWithContraryIndicators: 5689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5580x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4280x2, 4281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToRequestIfNotPresent: 3571x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnResponses: 460x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCacheEvenIfResponseMarkedCacheable: 5665x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToRequestIfNotPresent: 3799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test303ResponsesAreNotCached: 1831x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToDELETEsAreNotCached: 1105x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4226x2, 4227x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4172x2, 4173x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleExpectHeadersIsPreservedOnRequests: 404x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownResponseStatusCodesAreNotCached: 535x196, 538x186, 541x184, 544x164, 547x988
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeToRequestIfNotPresent: 3784x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnResponseProperlyRecordsOriginProtocol: 6132x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPOSTRequestsAreWrittenThroughToOrigin: 4931x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyETagHeaderOnRequest: 3530x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPUTRequestsAreWrittenThroughToOrigin: 4940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagToRequestIfNotPresent: 3576x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4520x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponsesAreNotCachedIfTheCacheDoesNotSupportRangeAndContentRangeHeaders: 1797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test204ResponsesDoNotContainMessageBodies: 1192x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownMethodRequestsAreWrittenThroughToOrigin: 4972x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddAMaxForwardsHeaderToForwardedOPTIONSRequests: 900x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4067x2, 4068x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test200ResponseToOPTIONSWithNoBodyShouldIncludeContentLengthZero: 825x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4390x2, 4391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigherMajorProtocolVersionsOnRequestSwitchToTunnelBehavior: 121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseWithDateHeaderForwardedFromOriginIncludesDateHeader: 1897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoStoreOnRequestIsNotStoredInCache: 5652x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderFromOriginResponseWithNoTransform: 3677x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToRequestIfNotPresent: 3794x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnRequests: 393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingToRequestIfNotPresent: 3779x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5555x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeAllowHeaderFromAnOrigin405Response: 2331x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderOnRequest: 3537x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToPOSTWithoutCacheControlOrExpiresAreNotCached: 1049x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTRACERequestsAreWrittenThroughToOrigin: 4956x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDecrementsMaxForwardsWhenForwardingOPTIONSRequest: 875x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustIncludeWWWAuthenticateHeaderOnAnOrigin401Response: 2307x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAllowHeadersIsPreservedOnRequests: 364x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsExpecting100ContinueBehaviorShouldSetExpectHeader: 625x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponsesToOPTIONSAreNotCacheable: 799x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseDoesNotContainABody: 1862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2432x2
- org.apache.http.impl.client.cache.TestCachingExec#testUnsuitableUnvalidatableCacheEntryCausesBackendRequest: 210
- org.apache.http.impl.client.cache.TestCachingExec#testRevalidationRewritesAbsoluteUri: 338
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheMissContextIfRequestNotServableFromCache: 449
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForOptionsFollowedByGetIfAuthorizationHeaderAndSharedCache: 826, 827
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestNotServableFromCache: 466
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNonCacheableResponseIsNotCachedAndIsReturnedAsIs: 345
- org.apache.http.impl.client.cache.TestCachingExecChain#testRecordsClientProtocolInViaHeaderIfRequestNotServableFromCache: 428
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin407WithoutAProxyAuthenticateHeader: 397
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin401ResponseWithoutWWWAuthenticateHeader: 350
- org.apache.http.impl.client.cache.TestProtocolDeviations#testOPTIONSRequestsWithBodiesAndNoContentTypeHaveOneSupplied: 280
- org.apache.http.impl.client.cache.TestProtocolDeviations#testPassesOnOrigin405WithoutAllowHeader: 373
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLocationOnResponses: 849
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLengthFromOrigin304ResponseToStrongValidation: 355
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentEncodingFromOrigin304ResponseToStrongValidation: 341
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginAndNoExpiresIsNotCached: 1438
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnRequests: 751
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnResponses: 739
- org.apache.http.impl.client.cache.TestProtocolRecommendations#responseToGetWithQueryFrom1_0OriginVia1_1ProxyAndNoExpiresIsNotCached: 1456
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentRangeFromOrigin304ResponseToStringValidation: 388
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnRequests: 688
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripLastModifiedFromOrigin304ResponseToStrongValidation: 397
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1548
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1651
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentRange: 272x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1363
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExpiresOnResponses: 786
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripAllowFromOrigin304ResponseToStrongValidation: 334
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1493
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAuthorizationOnRequests: 677
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentRange: 279x2
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRetryAfterOnResponses: 872
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1413
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentRangeOnRequests: 728
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentTypeFromOrigin304ResponseToStrongValidation: 369
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1625
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfUnmodifiedSinceOnRequests: 833
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentMD5FromOrigin304ResponseToStrongValidation: 362
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnRequests: 708
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfMatchOnRequests: 802
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldStripContentLanguageFromOrigin304ResponseToStrongValidation: 348
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 161
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 311
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 137
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 212
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 285
|
| 844 | |
} |
| |
| |
| 854 | |
private void storeRequestIfModifiedSinceFor304Response( |
| 855 | |
final HttpRequest request, final HttpResponse backendResponse) { |
| 856 | 552 |
if (backendResponse.getStatusLine().getStatusCode() == HttpStatus.SC_NOT_MODIFIED) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 857 | 5 |
final Header h = request.getFirstHeader("If-Modified-Since");
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
|
| 858 | 5 |
if (h != null) {
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
|
| 859 | 1 |
backendResponse.addHeader("Last-Modified", h.getValue());
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
|
| 860 | |
} |
| 861 | |
} |
| 862 | 552 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| |
| 864 | |
private boolean alreadyHaveNewerCacheEntry(final HttpHost target, final HttpRequestWrapper request, |
| 865 | |
final HttpResponse backendResponse) { |
| 866 | 555 |
HttpCacheEntry existing = null;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 867 | |
try { |
| 868 | 555 |
existing = responseCache.getCacheEntry(target, request);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 869 | 1 |
} catch (final IOException ioe) {
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
|
| 870 | |
|
| 871 | 554 |
}
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 872 | 555 |
if (existing == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2, 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2, 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2, 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2, 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2, 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2, 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x6
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2, 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2, 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2, 2976x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723, 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064, 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295, 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666, 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666, 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634, 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261, 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900, 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787, 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863, 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145, 1146
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124, 143
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997, 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948, 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549, 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113, 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587, 1588
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543, 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595, 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492, 493
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 873 | 478 |
return false;
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfCannotRevalidateAMustRevalidateEntry: 5432x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheEntryDoesNotHaveACacheValidator: 4121x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeadersIsPreservedOnResponses: 467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereAllValidatorsMatchMayBeServedFromCache: 3269x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3158x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransmitsAgeHeaderIfIncomingAgeHeaderTooBig: 4991x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnRequests: 418x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddEtagToOriginResponse: 3401x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1551x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2055x2, 2056x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatesWarningHeadersOnValidation: 6201x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarnDatesAreAddedToWarningsOnLowerProtocolVersions: 6237x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsContentLocationIfA200ResponseWouldHaveIncludedIt: 1406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToCachedResponseWithNoTransformIfNotPresent: 3773x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardCachedPartialResponseIfCacheValidatorsDoNotStronglyMatchAndDateHeadersAreEqual: 4446x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpect100ContinueIsNotSentIfThereIsNoRequestBody: 704x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnResponsesAreForwarded: 591x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRequestsWithLowerProtocolVersionsGetUpgradedTo1_1: 175x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptHeaderValuesIsPreservedOnRequests: 332x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyServerResponseHeader: 5892x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToCachedResponseWithNoTransformIfNotPresent: 3761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatch: 4337x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRemovesWarningHeaderIfAllWarnValuesAreBadlyDated: 6320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInContentLocationHeader: 4785x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#test2xxWarningsAreNotDeletedAfterSuccessfulRevalidation: 2761x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToCacheHit: 3634x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testLowerOriginResponsesUpgradedToOurVersion1_1: 207x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveContentRangeOrMultipartByteRangesContentType: 1262x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithMustRevalidate: 5177x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToResponses: 6021x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHigher1_XProtocolVersionsDowngradeTo1_1: 144x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheMissOnGETUsesOriginResponse: 88x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptCharsetHeadersIsPreservedOnRequests: 339x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4856x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesContentLocationIfOriginResponseDid: 1988x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptEncodingHeadersIsPreservedOnRequests: 346x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInLocationHeader: 4779x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWWWAuthenticateHeadersIsPreservedOnResponses: 495x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCachedResponsesWithMissingDateHeadersShouldBeAssignedOne: 5802x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5873x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderMatchesDateIfAddedToOriginResponse: 3611x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfETagDoesNotMatch: 1646x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSubrangeGETMustUseStrongComparisonForCachedResponse: 3108x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleWarningHeadersIsPreservedOnRequests: 425x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateIsNotCacheableBySharedCache: 5496x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnRequests: 411x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIsNotCombinedWithPreviousContentIfLastModifiedDoesNotMatch: 1740x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4862x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMultiHeadersAreSuccessfullyReplacedOn304Validation: 3990x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationHeaderFromOrigin: 3358x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleViaHeadersIsPreservedOnResponses: 488x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidationEvenWithContraryIndications: 5581x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCachedResponseDoesNotHaveCacheValidator: 4282x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test1xxWarningsAreDeletedAfterSuccessfulRevalidation: 2689x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToCachedResponseWithNoTransformIfNotPresent: 3767x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentEncodingHeaderValuesIsPreserved: 5706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderOnCachedResponseWithNoTransform: 3706x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToConditionalRangeRequestDoesNotIncludeOtherEntityHeaders: 1502x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveDateHeader: 1328x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyAllowHeaderWithUnknownMethods: 5011x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustUseNewRequestHeadersWhenRevalidatingAuthorizedResponsesWithSMaxAge: 5164x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4761x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentLocationFromOriginOnCacheHit: 3434x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInLocationHeader: 4755x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUnknownHeadersOnRequestsAreForwarded: 570x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleCacheControlHeadersIsPreservedOnRequests: 371x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testIncompleteResponseMustNotBeReturnedToClientWithoutMarkingItAs206: 4632x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedFromOriginOnCacheHit: 3450x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5HeaderFromOrigin: 3363x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3233x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfIncomingRequestDoesNotHaveCacheValidator: 4228x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultiplePragmaHeadersIsPreservedOnResponses: 481x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfCacheValidatorsDoNotStronglyMatch: 4174x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOrigin: 3594x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToAHEADRequestMustNotHaveABody: 925x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationToOriginResponse: 3391x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3731x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5ToOriginResponse: 3396x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddETagHeaderOnCacheHit: 3485x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseGeneratedFromCacheMustHaveABodyThatMatchesContentLengthHeaderIfPresent: 1294x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4868x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNonmatchingVariantCannotBeServedFromCacheUnlessConditionallyValidated: 4599x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesEtagIfOriginResponseDid: 1958x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testForwardsUnknownHeadersOnRequestsFromHigherProtocolVersions: 256x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testWarning110IsAddedToStaleResponses: 5222x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testGenerates504IfSharedCacheCannotRevalidateAProxyRevalidateEntry: 5467x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesDateHeader: 1923x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotServeFromCacheForVaryStar: 4521x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentTypeHeaderToOriginResponseWithNoTransformIfNotPresent: 3754x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingsInSingleHeadersIsPreserved: 5940x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutInvalidatesCacheForThatUriInContentLocationHeader: 4749x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInRelativeContentLocationHeader: 4773x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStripsBadlyDatedWarningsFromStoredResponses: 6301x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotCombinePartialResponseIfIncomingResponseDoesNotHaveACacheValidator: 4069x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4888x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304GeneratedFromCacheOnWeakValidatorDoesNotIncludeOtherEntityHeaders: 2109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleTransferEncodingHeadersIsPreserved: 5911x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentEncodingHeaderToOriginResponseWithNoTransformIfNotPresent: 3742x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderFromOriginResponseWithNoTransform: 3682x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleContentLanguageHeadersIsPreservedOnResponses: 474x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedToOriginResponse: 3406x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostDoesNotInvalidateCacheForUriInLocationHeadersFromOtherHosts: 4874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteToUriInvalidatesCacheForThatUri: 4691x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyLastModifiedHeaderFromOrigin: 3374x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testUpdatedEndToEndHeadersFrom304ArePassedOnResponseAndUpdatedInCacheEntry: 3946x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentMD5FromOriginOnCacheHit: 3439x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForThatUriInLocationHeader: 4791x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustDiscardLeastRecentPartialResponseIfCacheValidatorsDoNotStronglyMatchEvenIfResponsesOutOfOrder: 4392x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentLocationHeaderOnCacheHit: 3475x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentMD5HeaderOnCacheHit: 3480x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostToUriInvalidatesCacheForThatUri: 4697x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteDoesNotInvalidateCacheForUriInContentLocationHeadersFromOtherHosts: 4881x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPostInvalidatesCacheForRelativeUriInContentLocationHeader: 4797x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentEncodingHeaderFromOriginResponseWithNoTransform: 3666x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testTransferCodingsAreNotSentToAnHTTP_1_0Client: 281x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2194x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheControlPrivateOnFieldIsNotReturnedBySharedCache: 5522x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyExpiresHeaderFromOriginOnCacheHit: 3601x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheEntryIsUpdatedWithNewFieldValuesIn304Response: 2271x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentTypeHeaderOnCachedResponseWithNoTransform: 3711x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNoCacheCannotSatisfyASubsequentRequestWithoutRevalidation: 5556x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testVaryStarIsNotGeneratedByProxy: 5980x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagFromOriginOnCacheHit: 3444x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testViaHeaderOnRequestProperlyRecordsClientProtocol: 6109x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testRetainsWarningHeadersReceivedFromUpstream: 6160x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testPutToUriInvalidatesCacheForThatUri: 4685x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDeleteInvalidatesCacheForThatUriInContentLocationHeader: 4767x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testProperlyFormattedViaHeaderIsAddedToRequests: 6008x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCannotUseVariantCacheEntryIfNotAllSelectingRequestHeadersMatch: 4486x2, 4487x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleParametersInContentEncodingHeaderIsPreserved: 5734x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddLastModifiedHeaderOnCacheHit: 3490x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustNotNormallyCacheAuthorizedResponses: 5077x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2975x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyEtagHeaderFromOrigin: 3368x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseToA1_0RequestShouldUse1_1: 226x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testOrderOfMultipleAcceptLanguageHeadersIsPreservedOnRequests: 353x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithSMaxAgeHeader: 5086x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotAddContentRangeHeaderToOriginResponseWithNoTransformIfNotPresent: 3748x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheDoesNotAssumeContentLocationHeaderIndicatesAnotherCacheableResource: 5781x2, 5782x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ContainsETagIfA200ResponseWouldHaveIncludedIt: 1380x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testResponseIncludesCacheEntryEndToEndHeadersForResponseAfter304Validation: 3897x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMustNotUseMultipartByteRangeContentTypeOnCacheGenerated416Responses: 2431x2
- org.apache.http.impl.client.cache.TestCachingExec#testEndlessResponsesArePassedThrough: 386
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchPassesIfRequestServedFromOrigin: 1024
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRouteInContextOnCacheHit: 1457
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantsMissServerReturns304CacheReturns304: 1281, 1283
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIfRequestServedFromCache: 562
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderIfRequestServedFromCache: 692
- org.apache.http.impl.client.cache.TestCachingExecChain#testSocketTimeoutExceptionIsNotSilentlyCatched: 1325
- org.apache.http.impl.client.cache.TestCachingExecChain#testTreatsCacheIOExceptionsAsCacheMiss: 1363
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 723
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseIfRequestServedFromCache: 534
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSetConnectionInContextOnCacheHit: 1429
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsResponseInContextOnCacheHit: 1487
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfNoneMatchHeaderAndIfModifiedSinceIfRequestServedFromCache: 756
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1064
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 295
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 666
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetViaHeaderIfValidationFailsButNotRequired: 988
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationFailsButNotRequired: 959
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1666
- org.apache.http.impl.client.cache.TestCachingExecChain#testNoEntityForIfNoneMatchRequestNotYetInCache: 1542
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsCacheHitContextIfRequestServedFromCache: 510
- org.apache.http.impl.client.cache.TestCachingExecChain#testCanCacheAResponseWithoutABody: 1517
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestInContextOnCacheHit: 1471
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsModuleResponseContextIfValidationRequiredButFailed: 929
- org.apache.http.impl.client.cache.TestCachingExecChain#testUsesVirtualHostForCacheKey: 1683, 1686
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSinceHeaderIf304ResponseInCache: 599
- org.apache.http.impl.client.cache.TestCachingExecChain#testVariantMissServerIfReturns304CacheReturns200: 1211, 1213, 1215
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsRequestSentInContextOnCacheHit: 1503
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 634
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 261
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseUpdatesCacheEntryWhenNoEntity: 1579
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderOnResponseForCacheMiss: 487
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsTargetHostInContextOnCacheHit: 1443
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 900
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 787
- org.apache.http.impl.client.cache.TestCachingExecChain#testCacheableResponsesGoIntoCache: 230
- org.apache.http.impl.client.cache.TestCachingExecChain#testNotModifiedResponseWithVaryUpdatesCacheEntryWhenNoEntity: 1621
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 863
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1145
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns304ForIfModifiedSincePassesIfRequestServedFromOrigin: 1104
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 124
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheReturnsStaleResponseWhenRevalidationFailsForProxyRevalidate: 68
- org.apache.http.impl.client.cache.TestProtocolAllowedBehavior#testNonSharedCacheMayCacheResponsesWithCacheControlPrivate: 89
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotAddNewWarningHeaderIfResponseArrivesStale: 604
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testForwardsExistingWarningHeadersOnResponseThatArrivesStale: 623
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 997
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRevalidatesCachedResponseWithExpirationInThePast: 1055
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returns504ForStaleEntryWithOnlyIfCached: 1761
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnResponses: 908
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyAcceptRangesOnResponses: 670
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentMD5: 214
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfNoneMatchOnRequests: 816
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithCacheControl: 444
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLanguage: 193
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRefererOnRequests: 863
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsUpdatesEntry: 1261, 1262
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFirstHandOneWithPragma: 453
- org.apache.http.impl.client.cache.TestProtocolRecommendations#issues304EvenWithWeakETag: 1805
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentType: 293
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyExtensionHeaderOnRequests: 901
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentEncoding: 172
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfModifiedSinceOnRequests: 809
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxAge: 462
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMaxStale: 492
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 948
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyIfRangeOnRequests: 824
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentType: 286
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentLengthOnResponses: 696
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainAllow: 158
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1546, 1547, 1549
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainContentLanguage: 186
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentLength: 207
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyUserAgentOnRequests: 886
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheHitOkWithOnlyIfCached: 1740
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresPriorToDateWithNoCacheControlIsNotCacheable: 1652
- org.apache.http.impl.client.cache.TestProtocolRecommendations#variantNegotiationsDoNotIncludeEtagsForPartialResponses: 1362, 1364
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testMayReturnStaleResponseIfClientExplicitlySpecifiesAcceptableMaxStale: 506
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyServerOnResponses: 879
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentTypeOnResponses: 758
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongValidatorShouldNotContainContentLength: 200
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateNonvariantCacheEntryForUnknownMethod: 1492, 1494
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentMD5: 221
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnRequests: 765
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testReturnsCachedResponsesAppropriatelyWhenNoOriginCommunication: 565
- org.apache.http.impl.client.cache.TestProtocolRecommendations#returnsStaleCacheEntryWithOnlyIfCachedAndMaxStale: 1784
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cachedEntryShouldNotBeUsedIfMoreRecentMentionInContentLocation: 1412, 1414
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyFromOnRequests: 793
- org.apache.http.impl.client.cache.TestProtocolRecommendations#expiresEqualToDateWithNoCacheControlIsNotCacheable: 1626
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyDateOnResponses: 772
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1113
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testIdentityCodingIsNotUsedInContentEncodingHeader: 95
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongEtagValidatorShouldNotContainLastModified: 300
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyVaryOnResponses: 894
- org.apache.http.impl.client.cache.TestProtocolRecommendations#otherFreshnessRequestDirectivesNotAllowedWithNoCache: 1682
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainAllow: 165
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testResponseToExistingVariantsIsCachedForFutureResponses: 1304
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testSendsAllVariantEtagsInConditionalRequest: 1189, 1190, 1191
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyLastModifiedOnResponses: 840
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlySpecifiesLargerMaxAge: 471
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainContentEncoding: 179
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheGenerated304ForStrongDateValidatorShouldNotContainLastModified: 307
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1587
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotReturnStaleResponseIfClientExplicitlyRequestsFreshWithMinFresh: 482
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyRangeOnRequests: 856
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyContentMD5OnResponses: 716
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testDoesNotModifyETagOnResponses: 779
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToProxyRevalidateForSharedCache: 160
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsFalseReturnsError: 310
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsTrueReturnsStaleEntryWithWarning: 85
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 543
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 595
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 492
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToMustRevalidate: 136
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleEntryWithWarning: 352
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseYieldsToExplicitFreshnessRequest: 211
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testCanAlsoServeStale304sWhileRevalidating: 441
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testConsumesErrorResponseWhenServingStale: 113
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseIsFalseReturnsError: 284
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleNonRevalidatableEntryWithWarning: 260
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInRequestIsTrueReturnsStaleEntryWithWarning: 235
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleIfErrorInResponseNeedNotYieldToProxyRevalidateForPrivateCache: 187
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateReturnsStaleNonRevalidatableEntryWithWarning: 396
- org.apache.http.impl.client.cache.TestStaleWhileRevalidationReleasesConnection#testStaleWhileRevalidate: 139, 184
|
| 874 | |
} |
| 875 | 77 |
final Header entryDateHeader = existing.getFirstHeader(HTTP.DATE_HEADER);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 876 | 77 |
if (entryDateHeader == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 877 | 0 |
return false;
|
| 878 | |
} |
| 879 | 77 |
final Header responseDateHeader = backendResponse.getFirstHeader(HTTP.DATE_HEADER);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 880 | 77 |
if (responseDateHeader == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 881 | 0 |
return false;
|
| 882 | |
} |
| 883 | 77 |
final Date entryDate = DateUtils.parseDate(entryDateHeader.getValue());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 884 | 77 |
final Date responseDate = DateUtils.parseDate(responseDateHeader.getValue());
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 885 | 77 |
if (entryDate == null || responseDate == null) {
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 886 | 0 |
return false;
|
| 887 | |
} |
| 888 | 77 |
return responseDate.before(entryDate);
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithCacheControlPublic: 5112x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentMD5FieldMakeACacheEntryStale: 1002x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testValidationMustUseETagIfProvidedByOriginServer: 3159x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithCacheControlNoCache: 5320x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseToIfRangeWithStrongValidatorReturnsAllEntityHeaders: 1552x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test304ResponseGeneratedFromCacheIncludesExpiresCacheControlAndOrVaryIfResponseMightDiffer: 2057x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedLastModifiedFieldMakeACacheEntryStale: 1018x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresHeaderEqualToDateHeaderIsTreatedAsStale: 5874x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMustRevalidateAuthorizedResponsesWhenSMaxAgeIsZero: 5095x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithMustRevalidateIsNotUsedWithoutRevalidatingWithOrigin: 5393x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testConditionalRequestWhereNotAllValidatorsMatchCannotBeServedFromCache: 3234x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testCacheIsNotUsedWhenRespondingToRequestWithPragmaNoCache: 5329x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testExpiresZeroHeaderIsTreatedAsStale: 5846x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedContentLengthFieldMakeACacheEntryStale: 997x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testDoesNotModifyContentRangeHeaderOnCachedResponseWithNoTransform: 3732x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testMalformedExpiresHeaderIsTreatedAsStale: 5840x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testSharedCacheMayCacheAuthorizedResponsesWithMustRevalidate: 5104x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testStaleEntryWithProxyRevalidateOnSharedCacheIsNotUsedWithoutRevalidatingWithOrigin: 5452x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHEADResponseWithUpdatedETagFieldMakeACacheEntryStale: 1009x4
- org.apache.http.impl.client.cache.TestProtocolRequirements#testHeuristicCacheOlderThan24HoursHasWarningAttached: 2907x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testNotModifiedOfNonCachedEntityShouldRevalidateWithUnconditionalGET: 2195x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#test206ResponseIncludesVariantHeadersIfValueMightDiffer: 1453x2
- org.apache.http.impl.client.cache.TestProtocolRequirements#testKeepsMostRecentDateHeaderForFreshResponse: 2976x2
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFails: 724
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchFailsIfRequestServedFromOrigin: 1065
- org.apache.http.impl.client.cache.TestCachingExecChain#testNewerCacheableResponsesReplaceExistingCacheEntry: 296
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsInvalid: 667
- org.apache.http.impl.client.cache.TestCachingExecChain#testDoesNotSend304ForNonConditionalRequest: 1667
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceDateIsLess: 635
- org.apache.http.impl.client.cache.TestCachingExecChain#testOlderCacheableResponsesDoNotGoIntoCache: 262
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsViaHeaderIfRequestWasSuccessfullyValidated: 901
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfNoneMatchHeaderFailsIfModifiedSinceIgnored: 788
- org.apache.http.impl.client.cache.TestCachingExecChain#testSetsValidatedContextIfRequestWasSuccessfullyValidated: 864
- org.apache.http.impl.client.cache.TestCachingExecChain#testReturns200ForIfModifiedSinceFailsIfRequestServedFromOrigin: 1146
- org.apache.http.impl.client.cache.TestHttpCacheJiraNumber1147#testIssue1147: 143
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesBothLastModifiedAndETagForConditionalRequestsIfAvailable: 998
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testUsesLastModifiedDateForCacheConditionalRequests: 949
- org.apache.http.impl.client.cache.TestProtocolRecommendations#shouldInvalidateAllVariantsForUnknownMethod: 1550
- org.apache.http.impl.client.cache.TestProtocolRecommendations#testRetriesValidationThatResultsInAnOlderDated304Response: 1114
- org.apache.http.impl.client.cache.TestProtocolRecommendations#cacheShouldUpdateWithNewCacheableResponse: 1588
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToProxyRevalidateForSharedCache: 544
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToExplicitFreshnessRequest: 596
- org.apache.http.impl.client.cache.TestRFC5861Compliance#testStaleWhileRevalidateYieldsToMustRevalidate: 493
|
| 889 | |
} |
| |
| 891 | |
} |